home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / lib / c / stdio / RCS / printf.c,v < prev    next >
Text File  |  1991-12-02  |  4KB  |  216 lines

  1. head     1.6;
  2. branch   ;
  3. access   ;
  4. symbols  sprited:1.6.1;
  5. locks    ; strict;
  6. comment  @ * @;
  7.  
  8.  
  9. 1.6
  10. date     88.07.28.17.18.40;  author ouster;  state Exp;
  11. branches 1.6.1.1;
  12. next     1.5;
  13.  
  14. 1.5
  15. date     88.07.28.16.41.14;  author ouster;  state Exp;
  16. branches ;
  17. next     1.4;
  18.  
  19. 1.4
  20. date     88.07.27.11.48.01;  author ouster;  state Exp;
  21. branches ;
  22. next     1.3;
  23.  
  24. 1.3
  25. date     88.07.21.09.37.10;  author ouster;  state Exp;
  26. branches ;
  27. next     1.2;
  28.  
  29. 1.2
  30. date     88.07.11.16.02.22;  author ouster;  state Exp;
  31. branches ;
  32. next     1.1;
  33.  
  34. 1.1
  35. date     88.06.10.16.23.54;  author ouster;  state Exp;
  36. branches ;
  37. next     ;
  38.  
  39. 1.6.1.1
  40. date     91.12.02.20.01.20;  author kupfer;  state Exp;
  41. branches ;
  42. next     ;
  43.  
  44.  
  45. desc
  46. @@
  47.  
  48.  
  49. 1.6
  50. log
  51. @More lint.
  52. @
  53. text
  54. @/* 
  55.  * printf.c --
  56.  *
  57.  *    Source code for the "printf" library procedure.
  58.  *
  59.  * Copyright 1988 Regents of the University of California
  60.  * Permission to use, copy, modify, and distribute this
  61.  * software and its documentation for any purpose and without
  62.  * fee is hereby granted, provided that the above copyright
  63.  * notice appear in all copies.  The University of California
  64.  * makes no representations about the suitability of this
  65.  * software for any purpose.  It is provided "as is" without
  66.  * express or implied warranty.
  67.  */
  68.  
  69. #ifndef lint
  70. static char rcsid[] = "$Header: printf.c,v 1.5 88/07/28 16:41:14 ouster Exp $ SPRITE (Berkeley)";
  71. #endif not lint
  72.  
  73. #include <stdio.h>
  74. #include <varargs.h>
  75.  
  76. /*
  77.  *----------------------------------------------------------------------
  78.  *
  79.  * printf --
  80.  *
  81.  *    Format and print one or more values, writing the output onto
  82.  *    stdout.  See the manual page for details of how the format
  83.  *    string is interpreted.
  84.  *
  85.  * Results:
  86.  *    The return value is a count of the number of characters
  87.  *    written to stdout.
  88.  *
  89.  * Side effects:
  90.  *    None.
  91.  *
  92.  *----------------------------------------------------------------------
  93.  */
  94.  
  95. #ifndef lint
  96. int
  97. printf(va_alist)
  98.     va_dcl            /* char *format, then any number of additional
  99.                  * values to be printed as described by
  100.                  * format. */
  101. {
  102.     char *format;
  103.     va_list args;
  104.  
  105.     va_start(args);
  106.     format = va_arg(args, char *);
  107.     return vfprintf(stdout, format, args);
  108. }
  109. #else
  110. /* VARARGS1 */
  111. /* ARGSUSED */
  112. int
  113. printf(format)
  114.     char *format;
  115. {
  116.     return 0;
  117. }
  118. #endif lint
  119. @
  120.  
  121.  
  122. 1.6.1.1
  123. log
  124. @Initial branch for Sprite server.
  125. @
  126. text
  127. @d17 1
  128. a17 1
  129. static char rcsid[] = "$Header: /sprite/src/lib/c/stdio/RCS/printf.c,v 1.6 88/07/28 17:18:40 ouster Exp $ SPRITE (Berkeley)";
  130. @
  131.  
  132.  
  133. 1.5
  134. log
  135. @Still cleaning stuff related to lint libraries.
  136. @
  137. text
  138. @d17 1
  139. a17 1
  140. static char rcsid[] = "$Header: printf.c,v 1.4 88/07/27 11:48:01 ouster Exp $ SPRITE (Berkeley)";
  141. d58 1
  142. @
  143.  
  144.  
  145. 1.4
  146. log
  147. @Make lint library correctly
  148. @
  149. text
  150. @d17 1
  151. a17 1
  152. static char rcsid[] = "$Header: printf.c,v 1.3 88/07/21 09:37:10 ouster Exp $ SPRITE (Berkeley)";
  153. d42 1
  154. a42 1
  155. #ifndef LINTLIB
  156. d64 1
  157. a64 1
  158. #endif LINTLIB
  159. @
  160.  
  161.  
  162. 1.3
  163. log
  164. @Change to use vfprintf instead of _doprnt.
  165. @
  166. text
  167. @d17 1
  168. a17 1
  169. static char rcsid[] = "$Header: printf.c,v 1.2 88/07/11 16:02:22 ouster Exp $ SPRITE (Berkeley)";
  170. d42 1
  171. a42 1
  172.     /* VARARGS0 */
  173. d56 9
  174. @
  175.  
  176.  
  177. 1.2
  178. log
  179. @If using varargs, don't have any arguments preceding the va_alist.
  180. @
  181. text
  182. @d17 1
  183. a17 1
  184. static char rcsid[] = "$Header: printf.c,v 1.1 88/06/10 16:23:54 ouster Exp $ SPRITE (Berkeley)";
  185. d54 1
  186. a54 1
  187.     return _doprnt(format, &args, stdout);
  188. @
  189.  
  190.  
  191. 1.1
  192. log
  193. @Initial revision
  194. @
  195. text
  196. @d17 1
  197. a17 1
  198. static char rcsid[] = "$Header: atoi.c,v 1.1 88/04/28 17:20:23 ouster Exp $ SPRITE (Berkeley)";
  199. d20 2
  200. a21 2
  201. #include "stdio.h"
  202. #include "varargs.h"
  203. d42 1
  204. d44 4
  205. a47 7
  206. printf(format, va_alist)
  207.     char *format;        /* Contains literal text and format control
  208.                  * sequences indicating how elements of
  209.                  * va_alist are to be printed.  See the
  210.                  * manual page for details. */
  211.     va_dcl            /* Variable number of values to be formatted
  212.                  * and printed. */
  213. d49 1
  214. d53 1
  215. @
  216.